func reflect.stringFor

32 uses

	reflect (current package)
		map.go#L34: 		panic("reflect.MapOf: invalid key type " + stringFor(ktyp))
		map.go#L44: 	s := "map[" + stringFor(ktyp) + "]" + stringFor(etyp)
		type.go#L765: 	panic("reflect: Elem of invalid type " + stringFor(t))
		type.go#L1791: 			if !(stringFor(rtypeOff(section, offs[h])) >= s) {
		type.go#L1804: 			if stringFor(typ) != s {
		type.go#L1862: 		s = "chan<- " + stringFor(typ)
		type.go#L1864: 		s = "<-chan " + stringFor(typ)
		type.go#L1866: 		typeStr := stringFor(typ)
		type.go#L2020: func stringFor(t *abi.Type) string {
		type.go#L2034: 			repr = append(repr, stringFor((*sliceType)(unsafe.Pointer(t)).Elem)...)
		type.go#L2036: 			repr = append(repr, stringFor(t)...)
		type.go#L2050: 		repr = append(repr, stringFor(t)...)
		type.go#L2079: 		panic("isReflexive called on non-key type " + stringFor(t))
		type.go#L2106: 		panic("needKeyUpdate called on non-key type " + stringFor(t))
		type.go#L2159: 	s := "[]" + stringFor(typ)
		type.go#L2321: 					panic("reflect.StructOf: illegal embedded field type " + stringFor(ft))
		type.go#L2417: 		repr = append(repr, (" " + stringFor(ft))...)
		type.go#L2661: 		panic("reflect.typeptrdata: unexpected type, " + stringFor(t))
		type.go#L2684: 	s := "[" + strconv.Itoa(length) + "]" + stringFor(typ)
		type.go#L2834: 		panic("reflect: funcLayout of non-func type " + stringFor(&t.Type))
		type.go#L2837: 		panic("reflect: funcLayout with interface receiver " + stringFor(rcvr))
		type.go#L2864: 		s = "methodargs(" + stringFor(rcvr) + ")(" + stringFor(&t.Type) + ")"
		type.go#L2866: 		s = "funcargs(" + stringFor(&t.Type) + ")"
		value.go#L442: 			panic("reflect: " + op + " using " + xt.String() + " as type " + stringFor(targ))
		value.go#L489: 		println("reflect.call", stringFor(&t.Type))
		value.go#L636: 					print("kind=", steps[0].kind, ", type=", stringFor(tv), "\n")
		value.go#L762: 					print("kind=", steps[0].kind, ", type=", stringFor(typ), "\n")
		value.go#L3215: 	panic(context + ": value of type " + stringFor(v.typ()) + " is not assignable to type " + stringFor(dst))
		value.go#L3227: 		panic("reflect.Value.Convert: value of type " + stringFor(v.typ()) + " cannot be converted to type " + t.String())